# Copyright (c) 1994 Sun Wu, Udi Manber, Burra Gopal. All Rights Reserved.
# You might have to change these depending on your machine configuration.
# AR and RANLIB are the library-archive programs. On Solaris, RANLIB is not
# required (define it to true) and AR is in /usr/ccs/bin/ar (on our machine!).
AR = /usr/ccs/bin/ar #for Solaris
RANLIB = true #for Solaris
# Define HAVE_DIRENT_H to be 1 when you don't have <sys/dir.h> else define it to be 0 (in this case, one of the other 3 flags may need to be defined to be 1).
HAVE_DIRENT_H = 1
HAVE_SYS_DIR_H = 0
HAVE_SYS_NDIR_H = 0
HAVE_NDIR_H = 0
# Define UTIME to be 1 if you have the utime() routine on your system. Else define it to be 0.
UTIME = 1
# Define ISO_CHAR_SET to be 1 if you want to use the international 8bit character set. Else define it to be 0.
ISO_CHAR_SET = 0
# You might have to change this depending on your machine configuration.
CC = gcc -traditional #cc
SHELL = /bin/sh
# YOU DON'T HAVE TO CHANGE ANYTHING BELOW THIS LINE
# The binaries will be made in ../bin/. and the agrep library in ../lib
# You normally don't have to change them.
BINDIR = ../bin
LIBDIR = ../lib
TCOMP = cast
TCOMPDIR = ../compress
AGREPDIR = ../agrep
TEMPLATEDIR = ../libtemplate
# You can change the target to use the "cast" (compression) library by changing:
# all: $(NOTCPROG)
# to:
# all: $(PROG)
# You must also define DOTCOMPRESSED below to be 1 instead of 0.
DOTCOMPRESSED = 0
# Include flags is not a part of CLFAGS and LINKFLAGS since path names from subdirs can be different